home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000032_news@columbia.edu _Fri Feb 16 09:25:51 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id JAA13912 for <kermit.misc@watsun>; Fri, 16 Feb 1996 09:25:51 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id JAA03543 for kermit.misc@watsun; Fri, 16 Feb 1996 09:25:46 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Kermit and Win95 Remote Host commands
  8. Date: 16 Feb 1996 14:25:21 GMT
  9. Organization: Columbia University
  10. Lines: 27
  11. Message-ID: <4g244h$3e9@apakabar.cc.columbia.edu>
  12. References: <4g06bt$kt4@iac2.ltec.net>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4g06bt$kt4@iac2.ltec.net>, Ameritas  <am70324@ltec.net> wrote:
  16. > Any solutions to doing a "remote host  <a command such as dir or move
  17. > etc.> from a client to a server running Win95 and K95?  When I try this 
  18. > nothing happens. It is echoed on the server but no results. Sounds like
  19. > Bug #46 on the bugs readme file.
  20. >
  21. Precisely.  This is only one of many Microsoft bugs related to console
  22. mode -- in this case, not Kermit's use of console mode, but COMMAND.COM's.
  23. If a process, any process, starts COMMAND.COM and connects to its output
  24. via a pipe, the pipe never closes and never returns an end-of-file
  25. indication.  Thus the parent process is stuck on a read that never
  26. returns.  Plus the redirection didn't work in the first place.
  27.  
  28. Pipes and redirection of standard input and output are pretty basic stuff,
  29. having been in UNIX since the late 1960s, and working just fine in Windows
  30. NT.  Not only do these (and many other) simple operations not work in the
  31. first release of Windows 95, but the Service Pack that was just released
  32. by Microsoft contains no fixes for this or any of the many other
  33. console-related bugs.
  34.  
  35. Kermit 95 Version 1.1.3, to be announced shortly, includes a workaround
  36. around this problem and you will be able to use REMOTE HOST, REMOTE
  37. DIRECTORY, and similar commands with a K95 server.
  38.  
  39. Watch this space for announcements.
  40.  
  41. - Frank